home *** CD-ROM | disk | FTP | other *** search
/ PC PowerPlay 22 / PCPP #22.iso / Quake2 / q2source_12_11 / utils3 / qe4 / xy.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-06-23  |  519 b   |  28 lines

  1.  
  2. // window system independent camera view code
  3.  
  4. typedef struct
  5. {
  6.     int        width, height;
  7.  
  8.     qboolean    timing;
  9.  
  10.     vec3_t    origin;            // at center of window
  11.     float    scale;
  12.  
  13.     float    topclip, bottomclip;
  14.  
  15.     qboolean d_dirty;
  16. } xy_t;
  17.  
  18. BOOL XYExcludeBrush(brush_t    *pb);
  19.  
  20. void XY_Init (void);
  21. void XY_MouseDown (int x, int y, int buttons);
  22. void XY_MouseUp (int x, int y, int buttons);
  23. void XY_MouseMoved (int x, int y, int buttons);
  24. void XY_Draw (void);
  25. void XY_Overlay (void);
  26.  
  27. BOOL FilterBrush(brush_t *pb);
  28.